.Servicessection{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  margin-bottom: 200px;
  flex-direction: column;
}

.sectionheader{
  margin-bottom: 55px;
}


.sectionhead{
  font-size: 30px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 700;
  line-height: 40px;
  letter-spacing: 0.4px;
  margin-bottom: 5px;
  color: rgb(48, 46, 46);
  text-align: center;
}

.sectiondesc{
  letter-spacing: 0.2px;
  font-size: 15px;
  font-weight: 300;
  width: 340px;
  line-height: 24px;
  color: rgb(148, 148, 148);
  margin: 0;
  text-align: center;
}

.card1, .card2{

  width: 305px;
  height: 465px;
  margin-right: 55px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(209, 209, 209, 0.502);
  transition: 0.17s all;
}

.card3{
  width: 305px;
  height: 465px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(209, 209, 209, 0.5);
  transition: 0.17s all;
  
}

.card1:hover{
  width: 305px;
  height: 465px;
  border-radius: 5px;
  overflow: hidden;
  color: antiquewhite;
  border: 1px solid rgba(209, 209, 209, 0.5);
  box-shadow: 0 3px 13px  rgba(209, 209, 209, 0.3);
  transform: scale(1.006) ;
}

.card2:hover{
  width: 305px;
  height: 465px;
  border-radius: 5px;
  overflow: hidden;
  color: antiquewhite;
  border: 1px solid rgba(209, 209, 209, 0.5);
  box-shadow: 0 3px 13px  rgba(209, 209, 209, 0.3);
  transform: scale(1.006) ;
  
}

.card3:hover{
  width: 305px;
  height: 465px;
  border-radius: 5px;
  overflow: hidden;
  color: antiquewhite;
  border: 1px solid rgba(209, 209, 209, 0.5);
  box-shadow: 0 3px 13px  rgba(209, 209, 209, 0.3);
  transform: scale(1.006) ;
  
}


.cardsframe{
  display: flex;
}



.cardboxes{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 30px;
}

.cardimg{
  object-fit: cover;
  width: 100%;
  height: 100%;
}


.card1box, .card2box, .card3box{
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.cardtexthead{
  font-size: 17px;
  font-family: 'Plus Jakarta Sans';
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.1px;
  color: #302e2e;
  text-align: center;
}

.cardtextdesc{
  letter-spacing: 0.3px;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  color: #a8a8a8;
  margin-bottom: 20px;
  margin-top: 15px;
  text-align: center;
  width: 265px;
}

.Learnbut1{
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  font-size: 12px;
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  color: rgb(48, 46, 46);
  text-align: center;
  letter-spacing: 0.3px;
  margin: 0;
}

.Learnbut1:hover{
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
  font-size: 12px;
  font-family: Plus Jakarta Sans;
  font-weight: 600;
  color: rgb(180, 72, 89);
  text-align: center;
  margin: 0;
  cursor: pointer;
}

.Learnbut1:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background-color: rgb(180, 72, 89);
  transition: width 0.25s ease-out;

}

.Learnbut1:hover::before{
  width: 100%;
}